home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 9 / Night Owl CD-ROM (NOPV9) (Night Owl Publisher) (1993).ISO / 002a / vc50_jan.zip / WI.BAT < prev   
DOS Batch File  |  1993-01-24  |  711b  |  18 lines

  1. @ECHO OFF
  2. REM **** If Victor Charlie's Home Directory is in your path, this is a fast
  3. REM **** "WHEREIS" to locate multiple files on ALL hard drives with 1 command.
  4. REM **** Wildcards fully supported. Note the use of the "hush" parameter.
  5.  
  6. if "%1"=="" ECHO What are you looking for? Usage: %0 filespec [filespec ...]
  7. if "%1"=="" GOTO END
  8.  
  9. ECHO     Victor Charlie's VCHECK searching all hard drives for 
  10. ECHO        %1 %2 %3 %4 %5 %6 %7 %8 %9 
  11. ECHO     Hit any key to stop search at any time.
  12. ECHO   Drive\Directory                                     File Size Bitcheck
  13. ECHO     ──────────                                           ──────   ──────
  14. VCHECK hush %1 %2 %3 %4 %5 %6 %7 %8 %9
  15.  
  16. :END
  17.  
  18.